@import url("https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap");
@import url("https://fonts.googleapis.com/css2?family=DotGothic16&display=swap");

/* 기본 설정 */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
}

body {
  background-color: #000000;
  color: #f30000;
}

/* 전체 래퍼 */
.page {
  min-height: 100vh;
}

/* 첫 화면 레이아웃 */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  background-color: #000000;
  padding-top: 18vh;
}

/* Feelings 텍스트 */
.feelings-title {
  font-family: "Logic Monoscript", "Courier New", monospace;
  color: #f30000;
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 400;
  text-align: center;
  margin-bottom: 40px;
  cursor: pointer;
}

/* 클릭 후 문장으로 바뀌었을 때 */
.feelings-text-paragraph {
  font-size: clamp(28px, 4vw, 50px);
  line-height: 1.4;
}

/* 이미지 */
.hero-image {
  width: min(520px, 80vw);
  height: auto;
}

/* Harmonic Collection 섹션 */
.collection-section {
  min-height: 100vh;
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px 10px;
}

.collection-wrap {
  max-width: 900px;
  width: 100%;
  text-align: center;
}

/* 제목 폰트 — 픽셀 폰트 적용 */
.collection-title {
  font-family: "Press Start 2P", "DotGothic16", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(25px, 1vw, 35px);
  letter-spacing: 0.12em;
  color: #000000;
  margin-bottom: 100px;
}

/* 폴더 하트 배치 */
.folder-heart {
  position: relative;
  width: min(720px, 90vw);
  height: 420px;
  margin: 0 auto;
}

.folder-item {
  position: absolute;
  transform: translate(-50%, -50%);
}

.folder-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
}

.folder-img {
  width: 95px;
  height: auto;
  object-fit: contain;
}

.folder-label {
  margin-top: 6px;
  font-size: 11px;
  color: #808080;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* 하트 모양 위치값 */
.item1 { left: 30%; top: 5%; }
.item2 { left: 70%; top: 5%; }
.item3 { left: 10%; top: 32%; }
.item4 { left: 50%; top: 32%; }
.item5 { left: 90%; top: 32%; }
.item6 { left: 18%; top: 64%; }
.item7 { left: 82%; top: 64%; }
.item8 { left: 33%; top: 88%; }
.item9 { left: 67%; top: 88%; }
.item10 { left: 50%; top: 113%; }

/* 반응형 */
@media (max-width: 768px) {
  .collection-section {
    padding-top: 60px;
  }

  .collection-title {
    font-size: 32px;
    margin-bottom: 40px;
  }

  .folder-heart {
    height: 360px;
  }

  .folder-img {
    width: 80px;
  }
}
